home *** CD-ROM | disk | FTP | other *** search
/ ASME's Mechanical Engine…ing Toolkit 1997 December / ASME's Mechanical Engineering Toolkit 1997 December.iso / c_lang / varinc.lzh / PNT_SHIP.C < prev    next >
Text File  |  1979-11-30  |  847b  |  27 lines

  1. /* SOURCE FILE: PNT_SHIP.C */
  2. /*****************************************************************************/
  3. /* pnt_ship_pay() paints the screen for order entry: ship, tax, pay. This    */
  4. /*   function is called exclusively by ship_pay() in ordbuild.c.             */
  5. /*****************************************************************************/
  6.  
  7. #include <stddefs.h>
  8. #include "projutil.h"
  9.  
  10. void pnt_ship_pay()
  11.    {
  12.    tput(4, 10, "Customer Name");
  13.    tput(6, 10, "Company Name");
  14.    tput(9, 10, "Shipping Weight");
  15.    tput(11, 19, "Carrier");
  16.    tput(11, 51, "Ship Charge");
  17.    tput(11, 64, "$");
  18.    tput(14, 10, "Sales Tax Percent");
  19.    tput(17, 10, "Payment Terms Code");
  20.    tput(18, 51, "Item Total");
  21.    tput(18, 64, "$");
  22.    tput(20, 51, "Order Total");
  23.    tput(20, 64, "$");
  24.    tput(22, 2, "Comment");
  25.    } 
  26.  
  27.